~/posts/Python Small Tips
2019.11.01
//Python Tips

Python Python 3 Tips

01. Int to Str leading zeros

Reference Link

    no = 1234
    value = str(no).zfill(8)
    print(value)
    # "00001234"

#### This page will be updated from time to time.
NORMAL posts/Python Small Tips Python UTF-8 LF